<html>
<head>
<title>Using Frames
Part 1</title>
</head>
<frameset
cols="150,*">
<frame name="contents"
target="main" src="left.html">
<frame name="main" src="main.html">
<noframes>
<body>
<p>This page uses
frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>
Note: To get the link to display from left.html to main.html, you will need to put the flowing code on the left.html, inside of the header tags, <base target="main">. By placing the base target on link page, it lets the browser know where you want page to build. In the case, we want it to display in the frame "name".
<html>
<head>
<title>Using Frames
Part 2</title>
</head>
<frameset
rows="64,*">
<frame name="banner"
scrolling="no" noresize target="contents" src="banner.html">
<frameset
cols="150,*">
<frame
name="contents"
target="main" src="left.html">
<frame
name="main" src="main.html">
</frameset>
<noframes>
<body>
<p>This page uses
frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>